What makes HTML reports so great?

Interactive tables.

for example, reactable

reactable(infert)

Interactive plots

for example plotly

education_plot <- ggplot(infert, aes(x=education, fill=education))+
  geom_bar()

ggplotly(education_plot)